All Questions
2 questions
2votes
1answer
160views
Explaining a bad approach - not comparing hashes
Today I saw a snippet a code for authentication logic : function checkPass($pass, $login){ $inputedPass = $pass; $req = $bdd->prepare('SELECT password FROM agents WHERE password = ...
0votes
1answer
763views
Protect database resources from fake data inputs via web forms
Scenario: I'm working on a project that needs to accept large amounts of data (customer data) from its users. So it can be normal to have a user trying to add 10,000 or 100,000 records at a time. In ...